type compress/flate.literalNode
12 uses
compress/flate (current package)
huffman_code.go#L20: freqcache []literalNode
huffman_code.go#L26: type literalNode struct {
huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
huffman_code.go#L132: func (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {
huffman_code.go#L246: func (h *huffmanEncoder) assignEncodingAndSize(bitCount []int32, list []literalNode) {
huffman_code.go#L277: h.freqcache = make([]literalNode, maxNumLit+1)
huffman_code.go#L285: list[count] = literalNode{uint16(i), f}
huffman_code.go#L310: type byLiteral []literalNode
huffman_code.go#L312: func (s *byLiteral) sort(a []literalNode) {
huffman_code.go#L325: type byFreq []literalNode
huffman_code.go#L327: func (s *byFreq) sort(a []literalNode) {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |